home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_2 / cookie / menuasp.asp < prev    next >
Encoding:
Text File  |  2003-10-22  |  548 b   |  28 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2.  
  3. <html>
  4. <head>
  5.     <title>Il sito di Mario Rossi</title>
  6. </head>
  7.  
  8. <% if Session("colore") <> "" then %>
  9. <body bgcolor="<%=Session("colore")%>">
  10. <% else %>
  11. <body>
  12. <% end if %>
  13.  
  14.  
  15. <table width="100%" border="1" cellpadding="0" cellpadding="2">
  16. <tr>
  17.     <td width="100">
  18.  
  19.     <!--#include file="includemenu.asp"-->
  20.  
  21.     </td>
  22.     <td><h1><div align="center">Questa Φ la Home Page del sito</div></h1></td>
  23. </tr>
  24. </table>
  25.  
  26. </body>
  27. </html>
  28.